From 114ecf35d6cb2ee0e7460e4c8870ae26f75531ea Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 16 Jul 2024 17:30:10 -0500 Subject: [PATCH] Recommend Python virtualenv creation with "python3 -m venv" --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 5502e13..50973d9 100644 --- a/README.rst +++ b/README.rst @@ -72,7 +72,7 @@ Installation Install into a Python 3 virtual environment with commands like:: # Create virtual environment - virtualenv -p python3 pgwui_venv + python3 -m venv pgwui_venv # Install PGWUI web server support pgwui_venv/bin/pip install pgwui_server # Install waitress web server (see below)) -- 2.34.1